home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / tpwprog7.arj / WFF.PAS < prev   
Encoding:
Pascal/Delphi Source File  |  1992-07-02  |  466 b   |  27 lines

  1. { wff.pas -- Windows form feed program }
  2.  
  3. program wff;
  4.  
  5. uses WinCrt;
  6.  
  7. const
  8.  
  9.   asciiFF = #12;
  10.  
  11. var
  12.  
  13.   Printer: Text;
  14.  
  15. begin
  16.   Assign(Printer, 'PRN');
  17.   Rewrite(Printer);
  18.   Write(Printer, asciiFF);
  19.   Close(Printer)
  20. end.
  21.  
  22.  
  23. {--------------------------------------------------------------
  24.   Copyright (c) 1991 by Tom Swan. All rights reserved.
  25.   Revision 1.00    Date: 5/15/1991
  26. ---------------------------------------------------------------}
  27.